home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / shared.dir / 07005_UI Rollover.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  4.8 KB  |  176 lines

  1. global goSIUIAsset
  2.  
  3. on UIInitMenu
  4.   global gUIPoints, gUIInitMenu
  5.   set gUIPoints to [:]
  6.   addProp(gUIPoints, "-button", rect(574, 427, 640, 480))
  7.   addProp(gUIPoints, "th", rect(503, 307, 593, 319))
  8.   addProp(gUIPoints, "ma", rect(503, 320, 593, 333))
  9.   addProp(gUIPoints, "tr", rect(503, 334, 593, 346))
  10.   addProp(gUIPoints, "wd", rect(503, 347, 593, 359))
  11.   addProp(gUIPoints, "sd", rect(503, 360, 593, 372))
  12.   addProp(gUIPoints, "iv", rect(503, 373, 593, 385))
  13.   addProp(gUIPoints, "hf", rect(503, 386, 593, 399))
  14.   addProp(gUIPoints, "-options", rect(503, 400, 593, 412))
  15.   addProp(gUIPoints, "-help", rect(503, 413, 573, 426))
  16.   addProp(gUIPoints, "-exit", rect(503, 427, 573, 438))
  17.   set gUIInitMenu to 1
  18.   set goSIUIAsset to birth(script "AssetManager", 7431)
  19. end
  20.  
  21. on UIMenu
  22.   global gUIPoints, gUIInitMenu, gSICurrMovie
  23.   if not gUIInitMenu then
  24.     UIInitMenu()
  25.   end if
  26.   set vSprite to the clickOn
  27.   set vSaveCast to the castNum of sprite vSprite
  28.   set vSaveX to the locH of sprite vSprite
  29.   set vSaveY to the locV of sprite vSprite
  30.   puppetSprite(vSprite, 1)
  31.   set the locH of sprite vSprite to 604
  32.   set the locV of sprite vSprite to 450
  33.   set the ink of sprite vSprite to 8
  34.   set vOrgPoint to point(the mouseH, the mouseV)
  35.   set vDone to 0
  36.   set vLastCast to EMPTY
  37.   set vDown to 1
  38.   set vFirstTime to 1
  39.   set vDownMode to 0
  40.   repeat while not vDone
  41.     set vMouse to point(the mouseH, the mouseV)
  42.     set vItem to 0
  43.     repeat with vI = 1 to 11
  44.       if inside(vMouse, getAt(gUIPoints, vI)) then
  45.         set vItem to vI
  46.         exit repeat
  47.       end if
  48.     end repeat
  49.     set vWasDown to vDown
  50.     set vDown to the mouseDown
  51.     if (vItem = 0) or (vItem = 1) then
  52.       set vCastName to gSICurrMovie & "-UI-NONE"
  53.     else
  54.       set vCastName to gSICurrMovie & "-UI-" & integer(vItem - 1) & "-ROLLOVER"
  55.     end if
  56.     if vLastCast <> vCastName then
  57.       set vLastCast to vCastName
  58.       set the castNum of sprite vSprite to mGetAssetNo(goSIUIAsset, vCastName)
  59.       updateStage()
  60.     end if
  61.     if vDownMode then
  62.       if vDown then
  63.         set vDone to 1
  64.       end if
  65.       next repeat
  66.     end if
  67.     if vWasDown and not vDown then
  68.       if vItem = 1 then
  69.         set vDownMode to 1
  70.         next repeat
  71.       end if
  72.       set vDone to 1
  73.     end if
  74.   end repeat
  75.   set the castNum of sprite vSprite to cast (gSICurrMovie & "-UI")
  76.   set the locH of sprite vSprite to vSaveX
  77.   set the locV of sprite vSprite to vSaveY
  78.   puppetSprite(vSprite, 0)
  79.   updateStage()
  80.   if vItem > 0 then
  81.     set vModule to getPropAt(gUIPoints, vItem)
  82.     if char 1 of vModule = "-" then
  83.       if vModule = "-options" then
  84.         LaunchOptions()
  85.       else
  86.         if vModule = "-help" then
  87.           LaunchHelp()
  88.         else
  89.           if vModule = "-exit" then
  90.             exitApp()
  91.           end if
  92.         end if
  93.       end if
  94.     else
  95.       navGoTo(vModule)
  96.     end if
  97.   end if
  98. end
  99.  
  100. on UIPress
  101.   global gUILastSprite
  102.   set vSprite to the clickOn
  103.   set vCastNo to the castNum of sprite vSprite
  104.   set vCastNam to the name of cast vCastNo
  105.   puppetSprite(vSprite, 1)
  106.   if (vCastNam = 0) or (vCastNam = EMPTY) then
  107.     set the castNum of sprite vSprite to vCastNo + 1
  108.   else
  109.     if vCastNam contains "ROLLOVER" then
  110.       set the castNum of sprite vSprite to vCastNo + 1
  111.     else
  112.       set the castNum of sprite vSprite to the number of cast (vCastNam & "-down")
  113.     end if
  114.   end if
  115.   updateStage()
  116.   repeat while the stillDown
  117.     nothing()
  118.   end repeat
  119.   if (vCastNam = 0) or (vCastNam = EMPTY) then
  120.     set the castNum of sprite vSprite to vCastNo
  121.   else
  122.     set the castNum of sprite vSprite to the number of cast vCastNam
  123.   end if
  124.   puppetSprite(vSprite, 0)
  125.   updateStage()
  126.   dontPassEvent()
  127.   if the mouseCast = the castNum of sprite vSprite then
  128.     return 1
  129.   else
  130.     return 0
  131.   end if
  132. end
  133.  
  134. on UIRollover aGoBack, aUI
  135.   global gUILastSprite
  136.   set vNowSprite to 0
  137.   if aGoBack <> -1 then
  138.     if rollOver(aGoBack) then
  139.       set vNowSprite to aGoBack
  140.     end if
  141.   end if
  142.   if aUI <> -1 then
  143.     if rollOver(aUI) then
  144.       set vNowSprite to aUI
  145.     end if
  146.   end if
  147.   if vNowSprite <> 0 then
  148.     set vCastNo to the castNum of sprite vNowSprite
  149.     set vCastName to the name of cast vCastNo
  150.     if vCastName contains "DOWN" then
  151.       set vNowSprite to 0
  152.     end if
  153.   end if
  154.   if vNowSprite = 0 then
  155.     puppetSprite(gUILastSprite, 0)
  156.     set gUILastSprite to 0
  157.   else
  158.     UIRollOverOn(vNowSprite)
  159.     set gUILastSprite to vNowSprite
  160.   end if
  161. end
  162.  
  163. on UIRollOverOn vNowSprite
  164.   global gUILastSprite
  165.   if not (gUILastSprite = vNowSprite) then
  166.     set vCastNo to the castNum of sprite vNowSprite
  167.     set vCastNam to the name of cast vCastNo
  168.     puppetSprite(vNowSprite, 1)
  169.     if not (vCastNam contains "-ROLLOVER") then
  170.       set the castNum of sprite vNowSprite to cast (vCastNam & "-ROLLOVER")
  171.       updateStage()
  172.     end if
  173.     puppetSprite(gLastSprite, 0)
  174.   end if
  175. end
  176.